home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / alsa-utils.postinst < prev    next >
Text File  |  2009-10-20  |  528b  |  28 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.   configure)
  7.     # Rename /etc/modprobe.d/sound
  8.     S="/etc/modprobe.d/sound"
  9.     if [ -f "$S" ]
  10.       then mv "$S" "$S.conf"
  11.     fi
  12.     ;;
  13.   abort-upgrade|abort-remove|abort-deconfigure)
  14.     # Nothing to do because we didn't take any action in the prerm
  15.     ;;
  16.   *)
  17.     echo "postinst called with unknown argument \`$1'" >&2
  18.     exit 1
  19.     ;;
  20. esac
  21.  
  22. # Automatically added by dh_installinit
  23. if [ -x "/etc/init.d/alsa-utils" ]; then
  24.     update-rc.d alsa-utils stop 50 0 6 . >/dev/null || exit $?
  25. fi
  26. # End automatically added section
  27.  
  28.